Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update devdependencies (non-major) (patch) #1108

Merged
merged 1 commit into from
Dec 12, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 14, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@eslint/compat 1.2.3 -> 1.2.4 age adoption passing confidence
@storybook/addon-a11y (source) 8.4.5 -> 8.4.7 age adoption passing confidence
@storybook/addon-actions (source) 8.4.5 -> 8.4.7 age adoption passing confidence
@storybook/addon-docs (source) 8.4.5 -> 8.4.7 age adoption passing confidence
@storybook/addon-essentials (source) 8.4.5 -> 8.4.7 age adoption passing confidence
@storybook/addon-links (source) 8.4.5 -> 8.4.7 age adoption passing confidence
@storybook/experimental-addon-test (source) 8.4.5 -> 8.4.7 age adoption passing confidence
@storybook/react (source) 8.4.5 -> 8.4.7 age adoption passing confidence
@storybook/react-vite (source) 8.4.5 -> 8.4.7 age adoption passing confidence
@types/node (source) 22.10.1 -> 22.10.2 age adoption passing confidence
@types/react (source) 18.3.12 -> 18.3.16 age adoption passing confidence
@types/react-dom (source) 18.3.1 -> 18.3.5 age adoption passing confidence
@types/stylis (source) 4.2.6 -> 4.2.7 age adoption passing confidence
@vitest/browser (source) 2.1.6 -> 2.1.8 age adoption passing confidence
@vitest/ui (source) 2.1.6 -> 2.1.8 age adoption passing confidence
katex (source) 0.16.11 -> 0.16.15 age adoption passing confidence
playwright (source) 1.49.0 -> 1.49.1 age adoption passing confidence
prettier (source) 3.4.1 -> 3.4.2 age adoption passing confidence
react-i18next 15.1.2 -> 15.1.4 age adoption passing confidence
storybook (source) 8.4.5 -> 8.4.7 age adoption passing confidence
vite (source) 6.0.1 -> 6.0.3 age adoption passing confidence
vitest (source) 2.1.6 -> 2.1.8 age adoption passing confidence

Release Notes

eslint/rewrite (@​eslint/compat)

v1.2.4

Compare Source

storybookjs/storybook (@​storybook/addon-a11y)

v8.4.7

Compare Source

v8.4.6

Compare Source

vitest-dev/vitest (@​vitest/browser)

v2.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
KaTeX/KaTeX (katex)

v0.16.15

Compare Source

Features
  • italic sans-serif in math mode via \mathsfit command (#​3998) (2218901)

v0.16.14

Compare Source

Features

v0.16.13

Compare Source

Bug Fixes

v0.16.12

Compare Source

Features
microsoft/playwright (playwright)

v1.49.1

Compare Source

prettier/prettier (prettier)

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;
i18next/react-i18next (react-i18next)

v15.1.4

Compare Source

  • Fix: warning each child should have a unique key 1820

v15.1.3

Compare Source

  • fix: Self-closing REACT components in translation strings should not attempt to replace the component's children 1815 1816
vitejs/vite (vite)

v6.0.3

Compare Source

v6.0.2

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "* 0-4,22-23 * * 1-5,* * * * 0,6" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from e3862b9 to 6f97a53 Compare November 14, 2024 18:54
@renovate renovate bot changed the title chore(deps): update devdependencies (non-major) to v8.4.4 (patch) chore(deps): update devdependencies (non-major) (patch) Nov 14, 2024
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 5 times, most recently from cb4dd53 to f436739 Compare November 20, 2024 21:29
@renovate renovate bot changed the title chore(deps): update devdependencies (non-major) (patch) chore(deps): update devdependencies (non-major) (patch) - autoclosed Nov 21, 2024
@renovate renovate bot closed this Nov 21, 2024
@renovate renovate bot deleted the renovate/patch-devdependencies-(non-major) branch November 21, 2024 13:17
@renovate renovate bot changed the title chore(deps): update devdependencies (non-major) (patch) - autoclosed chore(deps): update devdependencies (non-major) (patch) Nov 23, 2024
@renovate renovate bot reopened this Nov 23, 2024
@renovate renovate bot changed the title chore(deps): update devdependencies (non-major) (patch) chore(deps): update dependency @types/node to v22.9.2 Nov 23, 2024
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from f436739 to ad86111 Compare November 23, 2024 03:31
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v22.9.2 chore(deps): update dependency @types/node to v22.9.3 Nov 23, 2024
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 2 times, most recently from 9cbda11 to 3154463 Compare November 24, 2024 04:41
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v22.9.3 chore(deps): update devdependencies (non-major) (patch) Nov 24, 2024
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 11 times, most recently from b011480 to 68d8068 Compare November 28, 2024 12:38
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 68d8068 to f048bac Compare November 29, 2024 16:07
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from f048bac to 7ab2e3b Compare December 7, 2024 17:52
@github-advanced-security
Copy link

This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation.

@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 17 times, most recently from 24107ce to e7b1bf1 Compare December 12, 2024 09:25
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from e7b1bf1 to 56cafeb Compare December 12, 2024 09:32
@spaenleh spaenleh added this pull request to the merge queue Dec 12, 2024
Merged via the queue into main with commit e66e864 Dec 12, 2024
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant